home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / video / fly8111-.000 / fly8111- / fly8 / shapes / chute.vx < prev    next >
Text File  |  1979-12-31  |  629b  |  30 lines

  1. /* --------------------------------- chute.vx ------------------------------- */
  2.  
  3. /*
  4.  * This is part of the flight simulator 'fly8'.
  5.  * Author: Eyal Lebedinsky (eyal@ise.canberra.edu.au).
  6.  *
  7.  */
  8.  
  9. /*
  10.  * Object shape: O_CHUTE.
  11. */
  12.  
  13. #include "shape.h"
  14.  
  15. #define    S    3
  16. static VERTEX vx_chute[] = {        /* 3D 9 edges */
  17.     {{   0,   0, 3*S}, V_MOVE},
  18.     {{   0,-1*S, 2*S}, V_DRAW},
  19.     {{   0,   0,-3*S}, V_DRAW},
  20.     {{ 1*S,   S, 2*S}, V_DRAW},
  21.     {{-1*S,   S, 2*S}, V_DRAW},
  22.     {{   0,-1*S, 2*S}, V_DRAW},
  23.     {{ 1*S,   S, 2*S}, V_DRAW},
  24.     {{   0,   0, 3*S}, V_DRAW},
  25.     {{-1*S,   S, 2*S}, V_DRAW},
  26.     {{   0,   0,-3*S}, V_DRAW},
  27.  
  28.     {{   0,   0, 2*S}, V_EOF}
  29. };
  30.